🎖️GitЯра🎖️
Node / meshtastic / Meshtastic-Android / files / core / datastore / src / commonMain / kotlin / org / meshtastic / core / datastore / LocalConfigDataSource.kt
Displaying Raw • Download
core/datastore/src/commonMain/kotlin/org/meshtastic/core/datastore/LocalConfigDataSource.kt bd2863243bab6eb213401d949839a2bc74dde7e2 (bd286324) Text, 2.56 KB
T8b949e/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787org.meshtastic.core.datastore
Tff7b72import T7ee787co.touchlab.kermit.Logger
Tff7b72import T7ee787kotlinx.coroutines.flow.Flow
Tff7b72import T7ee787kotlinx.coroutines.flow.catch
Tff7b72import T7ee787okio.IOException
Tff7b72import T7ee787org.koin.core.annotation.Single
Tff7b72import T7ee787org.meshtastic.core.datastore.di.CoreLocalConfigDataStore
Tff7b72import T7ee787org.meshtastic.proto.Config
Tff7b72import T7ee787org.meshtastic.proto.LocalConfig
T8b949e/** Class that handles saving and retrieving [LocalConfig] data. */
Tf0883e@Single
Tff7b72class T56d364LocalConfigDataSourceTb4b4b4(Tff7b72private Tff7b72val Te6edf3localConfigStoreTb4b4b4: Te6edf3CoreLocalConfigDataStoreTb4b4b4) Tb4b4b4{
Tff7b72val Te6edf3localConfigFlowTb4b4b4: Te6edf3FlowTff7b72<Te6edf3LocalConfigTff7b72> Tff7b72=
Te6edf3localConfigStoreTb4b4b4.Te6edf3dataTb4b4b4.Te6edf3catch Tb4b4b4{ Te6edf3exception Tff7b72-Tff7b72>
T8b949e// dataStore.data throws an IOException when an error is encountered when reading data
Tff7b72if Tb4b4b4(Te6edf3exception Tff7b72is Te6edf3IOExceptionTb4b4b4) Tb4b4b4{
Te6edf3LoggerTb4b4b4.Te6edf3e Tb4b4b4{ Ta5d6ff"Ta5d6ffError reading LocalConfig settings: Tffd700${Te6edf3exceptionTb4b4b4.Te6edf3messageTffd700}Ta5d6ff" Tb4b4b4}
Te6edf3emitTb4b4b4(Te6edf3LocalConfigTb4b4b4(Tb4b4b4)Tb4b4b4)
Tb4b4b4} Tff7b72else Tb4b4b4{
Tff7b72throw Te6edf3exception
Tb4b4b4}
Tb4b4b4}
Tff7b72suspend Tff7b72fun Td2a8ffclearLocalConfigTb4b4b4(Tb4b4b4) Tb4b4b4{
Te6edf3localConfigStoreTb4b4b4.Te6edf3updateData Tb4b4b4{ Te6edf3LocalConfigTb4b4b4(Tb4b4b4) Tb4b4b4}
Tb4b4b4}
T8b949e/** Updates [LocalConfig] from each [Config] oneOf. */
Tff7b72suspend Tff7b72fun Td2a8ffsetLocalConfigTb4b4b4(Te6edf3configTb4b4b4: Te6edf3ConfigTb4b4b4) Tff7b72= Te6edf3localConfigStoreTb4b4b4.Te6edf3updateData Tb4b4b4{ Te6edf3current Tff7b72-Tff7b72>
Tff7b72when Tb4b4b4{
Te6edf3configTb4b4b4.Te6edf3device Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3device Tff7b72= Te6edf3configTb4b4b4.Te6edf3deviceTb4b4b4)
Te6edf3configTb4b4b4.Te6edf3position Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3position Tff7b72= Te6edf3configTb4b4b4.Te6edf3positionTb4b4b4)
Te6edf3configTb4b4b4.Te6edf3power Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3power Tff7b72= Te6edf3configTb4b4b4.Te6edf3powerTb4b4b4)
Te6edf3configTb4b4b4.Te6edf3network Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3network Tff7b72= Te6edf3configTb4b4b4.Te6edf3networkTb4b4b4)
Te6edf3configTb4b4b4.Te6edf3display Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3display Tff7b72= Te6edf3configTb4b4b4.Te6edf3displayTb4b4b4)
Te6edf3configTb4b4b4.Te6edf3lora Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3lora Tff7b72= Te6edf3configTb4b4b4.Te6edf3loraTb4b4b4)
Te6edf3configTb4b4b4.Te6edf3bluetooth Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3bluetooth Tff7b72= Te6edf3configTb4b4b4.Te6edf3bluetoothTb4b4b4)
Te6edf3configTb4b4b4.Te6edf3security Tff7b72!Tff7b72= Tff7b72null Tff7b72-Tff7b72> Te6edf3currentTb4b4b4.Te6edf3copyTb4b4b4(Te6edf3security Tff7b72= Te6edf3configTb4b4b4.Te6edf3securityTb4b4b4)
Tff7b72else Tff7b72-Tff7b72> Te6edf3current
Tb4b4b4}
Tb4b4b4}
Tb4b4b4}
Served by rngit 1.5.0 - Generated in 0.07s